home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ AMD Win2k Check.xpl < prev    next >
Text File  |  2003-11-19  |  1KB  |  39 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Information\CPU Information"
  5. "NAME"="AMD Athlon/Duron Patch Check"
  6. "VERSION"="1.03"
  7. "LANGUAGE"="VBScript"
  8. "OSVERSION"="0001011"
  9. "TEXT 1"="Result"
  10. "DESCRIPTION 1"="This plug-in displays if you have the AMD Athlon/Duron Windows 2000 patch installed or not."
  11. "DESCRIPTION 2"="If the patch is installed, the number shown will be 4294967295.  If not, the patch is not installed."
  12. "DESCRIPTION 3"="You can't change anything!!!  See http://support.microsoft.com/support/kb/articles/q270/7/15.asp for more information.  This is only needed when using Windows 2000 with AMD Athlon or AMD Duron processors."
  13. "AUTHOR"="Xteq Systems (CptSiskoX)"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="More info: http://www.amd.com/products/cpg/athlon-duron/amd_win2k_patch.html "
  17. "COMMENT 2"="See http://support.microsoft.com/support/kb/articles/q270/7/15.asp for more information."
  18.  
  19.  
  20. sP="HKEY_LOCAL_MACHINE\System\CurrentControlSet\control\Session Manager\Memory Management\"
  21. sV1="LargePageMinimum"
  22.  
  23.  
  24. Sub Plugin_Initialize 
  25.     s=RegReadValue(sP & sV1)
  26.     Call SetUIElement(1,s)
  27.  
  28.  Call Disable 'user can't change anything!
  29. End Sub
  30.  
  31. Sub Plugin_CheckData(ElementIndex)
  32. End Sub
  33.  
  34. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  35. End Sub
  36.  
  37. Sub Plugin_Terminate 
  38. End Sub
  39.